home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Networking / Network Watch (DMZ) v1.5 / sources / OT_SC_Stubs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-25  |  757 b   |  45 lines  |  [TEXT/SPM ]

  1. /*
  2. Stub routines to convince Symantec C++ for PPC to link with Open Transport libraries.
  3. See the Q&A for full details.
  4.  
  5. ©1996 Apple Computer, Inc
  6. Quinn "The Eskimo!"
  7. Developer Technical Support
  8. Networking, Communications and Hardware
  9. */
  10.  
  11. #include <Types.h>
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. void SetSelfAsClient(void);
  18. void LoadClass(void);
  19. void SetCurrentClient(void);
  20. void UnloadClass(void);
  21.     
  22. void SetSelfAsClient(void)
  23. {
  24.         DebugStr("\pSetSelfAsClient -- This is not good.");
  25. }
  26.  
  27. void LoadClass(void)
  28. {
  29.         DebugStr("\pLoadClass -- This is not good.");
  30. }
  31.  
  32. void SetCurrentClient(void)
  33. {
  34.         DebugStr("\pSetCurrentClient -- This is not good.");
  35. }
  36.  
  37. void UnloadClass(void)
  38. {
  39.         DebugStr("\pUnloadClass -- This is not good.");
  40. }
  41.  
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45.